home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Compendium Deluxe 2
/
LSD and 17bit Compendium Deluxe - Volume II.iso
/
a
/
prog
/
cprog
/
tdddconv.lha
/
tddd2mif.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1991-10-10
|
346 b
|
19 lines
/* tomif.c - convert TTDDD file to FrameMaker MIF format
* - written by Glenn M. Lewis - 7/24/91
*/
static char rcs_id[] = "$Id: tomif.c,v 1.3 1991/10/10 19:30:24 glewis Exp glewis $";
#include <stdio.h>
#include "ttdddlib.h"
WORLD *world;
main()
{
world = read_World(stdin);
write_MIF(world, stdout, VIEW_ALL_FOUR);
exit(0);
}